input[type="checkbox"] {
  width: 18px;
  height: 18px;
  border: 1px solid #333;
  border-radius: 2px;
}

/* Body styling for modern homepage */
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #1f2937;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #fff5f5 100%);
  background-attachment: fixed;
  background-repeat: no-repeat;
  min-height: 100vh;
}

/* Import additional CSS files */
@import url("testimonials.css");
@import url("animations.css");
@import url("service-icons.css");
@import url("newsletter.css");
@import url("contact.css");

/* Fix gradient text fallback */
.gradient-text-fallback {
  color: #1e3a8a;
  font-weight: 600;
}

/* Line clamp utilities for text truncation */
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Enhanced scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Mobile filter panel animation improvements */
.mobile-filter-slide {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced focus styles for accessibility */
.focus-enhanced:focus {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

/* Card hover effects */
.event-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.event-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

/* Loading animation for buttons */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.animate-spin {
  animation: spin 1s linear infinite;
}

/* Responsive utilities */
@media (max-width: 768px) {
  .mobile-optimized {
    padding: 1rem;
  }

  .mobile-text-sm {
    font-size: 0.875rem;
  }
}

/* Custom animations for modern homepage */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(30, 58, 138, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(30, 58, 138, 0.6);
  }
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

.animate-pulse-glow {
  animation: pulse-glow 2s ease-in-out infinite;
}

/* Gradient text effect */
.gradient-text {
  background: linear-gradient(135deg, #1e3a8a 0%, #1e3a8a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Card hover effects */
.card-hover {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hover:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Button effects */
.btn-glow {
  position: relative;
  overflow: hidden;
}

.btn-glow::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.btn-glow:hover::before {
  left: 100%;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}
